home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.2 KB | 55 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _FOCUSITR_
- #define _FOCUSITR_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODFocusSetIterator; // Iterator over the elements in a focus set
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODFocusSet;
-
-
- //=====================================================================================
- // Class ODFocusSetIterator
- //=====================================================================================
-
- interface ODFocusSetIterator : ODObject
- {
- ODTypeToken First();
-
- ODTypeToken Next();
-
- ODBoolean IsNotComplete();
-
-
- #ifdef __SOMIDL__
-
- implementation
- {
- override:
- somInit,
- somUninit;
-
- releaseorder:
- First,
- Next,
- IsNotComplete,
- InitFocusSetIterator;
-
-
- };
- #endif
- };
-
- #endif //# _FOCUSITR_
-